home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bytesc88.arc / CC3.C < prev    next >
Text File  |  1987-10-04  |  512b  |  24 lines

  1. /*
  2. ** Small-C Compiler Part 3
  3. */
  4. #include <stdio.h>
  5. #include "cc.def"
  6.  
  7. extern char
  8. #ifdef DYNAMIC
  9.  *stage,
  10.  *litq,
  11. #else
  12.   stage[STAGESIZE],
  13.   litq[LITABSZ],
  14. #endif
  15.  *glbptr, *lptr,  ssname[NAMESIZE],  quote[2], *stagenext;
  16. extern int
  17.   cch,  csp,  litlab,  litptr,  nch,  op[16],  op2[16],
  18.   oper,  opindex,  opsize;
  19.  
  20. #include "cc31.c"
  21. #include "cc32.c"
  22. #include "cc33.c"
  23.  
  24.